home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "modFont"
- Option Explicit
-
- Public Function ShowFontWindow(InFont As StdFont, InForeColor As Long, ReturnForeColor As Long) As StdFont
- With frmSelFnt
- Set .oFont = InFont
- Set .xFont = InFont
- .Color = InForeColor
- DoUntilNotVisible frmSelFnt
- ReturnForeColor = .Color
- Set ShowFontWindow = .oFont
- End With
- Unload frmSelFnt
- End Function
-